home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 2010 April
/
PCWorld0410.iso
/
hity wydania
/
Ubuntu 9.10 PL
/
karmelkowy-koliberek-desktop-9.10-i386-PL.iso
/
casper
/
filesystem.squashfs
/
usr
/
bin
/
unicode_stop
< prev
next >
Wrap
Text File
|
2009-06-24
|
530b
|
31 lines
#!/bin/sh
if [ ! -e /proc/self/fd/0 ] ; then
echo "Won't set ascii mode: Can't determine console type;" >&2
echo " Please ensure that /proc is mounted." >&2
exit 1
fi
TTY="`/usr/bin/tty`"
case "$TTY" in
/dev/console|/dev/vc*|/dev/tty[0-9]*)
;;
*)
echo "unicode_stop skipped on $TTY"
exit 0
;;
esac
# stop unicode
kbd_mode -a
if test -t ; then
printf '\033%%@'
fi
stty -iutf8
uid="`id -u 2>/dev/null`" ||:
if [ "$uid" = '0' ]; then
[ ! -r "$HOME/.kbd/.keymap_sv" ] ||
loadkeys "$HOME/.kbd/.keymap_sv"
fi